ubus: fix shadow local variable
authorÁlvaro Fernández Rojas <[email protected]>
Fri, 28 Nov 2025 11:46:38 +0000 (12:46 +0100)
committerÁlvaro Fernández Rojas <[email protected]>
Fri, 28 Nov 2025 11:50:03 +0000 (12:50 +0100)
commit90f503fc7ca6cce025e9429dc929c01372a5f36c
treed205676651d5d9140d713aa97862bd0b65a3e947
parenta170d63874f279d4bf48995a19285d7c7e7ad361
ubus: fix shadow local variable

Fix leftover shadowed local variable in ubus code from commit a170d63874f2.

src/ubus.c:130:38: error: declaration of 'a' shadows a previous local [-Werror=shadow=local]
  130 |                 struct dhcpv6_lease *a, *border;
      |                                      ^
src/ubus.c:118:15: note: shadowed declaration is here
  118 |         void *a;
      |               ^

Fixes: a170d63874f2 ("src: fix shadowed local variables")
Signed-off-by: Álvaro Fernández Rojas <[email protected]>
src/ubus.c